JavaScript

Video Playerpause Method

Syntax

videoObj.pause()

Description

Pauses video playback for a VideoPlayer or VideoRecorderPlayer UX control.

Discussion

The pause() method pauses video playback for a VideoPlayer or VideoRecorderPlayer control.

Example

var vObj = {dialog.object}.getControl('MYVIDEOPLAYER');
if (vObj) {
    vObj.pause();
}

See Also